c# press ctrl and alt

63

c# press ctrl and alt -

    private void Form1_KeyDown(object sender, KeyEventArgs e)
    {
        if (e.Control && e.Shift && e.KeyCode == Keys.P)
        {
            MessageBox.Show("Hello");
        }
    }

Comments

Submit
0 Comments